Declarations of new types
: Structures
Pascal
C/C++
type
student = record
id: packed array[1..10]
of char;
gpa: real
end;
var
someone: student;
OR
struct student
{ int id;
char name[11];
float gpa;
} someone;